home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / db / esm-3.1 / esm-3 / usr / local / sm / tests / misc / makefile.release < prev    next >
Encoding:
Makefile  |  1996-05-05  |  394 b   |  23 lines

  1.  
  2. #Top level directory for release
  3. TOP = ../..
  4. SM_CLIENT_LIB = $(TOP)/lib/libsm_client.a
  5. SM_CLIENT_H = $(TOP)/include
  6.  
  7. INCLUDE = -I$(SM_CLIENT_H)
  8.  
  9. CFLAGS = $(INCLUDE) -g
  10.  
  11. CC = g++
  12.  
  13. EXECS = loadscanobjs indexloadscan helloworld
  14. targets: $(EXECS)
  15.  
  16. loadscanobjs: loadscanobjs.o
  17. indexloadscan: indexloadscan.o
  18. helloworld: helloworld.o
  19.  
  20. $(EXECS): $(SM_CLIENT_LIB)
  21.     $(CC) $@.o $(SM_CLIENT_LIB) -o $@
  22.  
  23.